Namespaces

Types in MathNet.Numerics.LinearAlgebra.Factorization

Type ISolver<T>

Namespace MathNet.Numerics.LinearAlgebra.Factorization

Classes that solves a system of linear equations, AX = B.

Methods

Public Methods

Matrix<T> Solve(Matrix<T> input)

Solves a system of linear equations, AX = B.
Parameters
Matrix<T> input

The right hand side Matrix, B.

Return
Matrix<T>

The left hand side Matrix, X.

void Solve(Matrix<T> input, Matrix<T> result)

Solves a system of linear equations, AX = B.
Parameters
Matrix<T> input

The right hand side Matrix, B.

Matrix<T> result

The left hand side Matrix, X.

Vector<T> Solve(Vector<T> input)

Solves a system of linear equations, Ax = b
Parameters
Vector<T> input

The right hand side vector, b.

Return
Vector<T>

The left hand side Vector, x.

void Solve(Vector<T> input, Vector<T> result)

Solves a system of linear equations, Ax = b.
Parameters
Vector<T> input

The right hand side vector, b.

Vector<T> result

The left hand side Matrix>, x.